home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Freeware / DiskMaster / Rexx / DMFontsToo.rexx < prev    next >
OS/2 REXX Batch file  |  2002-10-27  |  414b  |  20 lines

  1. /* $VER: DMFontsToo.rexx 1.1 (2.10.98) by J. Tierney
  2.  
  3.   DMFontsToo.rexx  v1.1
  4.   10/2/97  J. Tierney
  5.  
  6.   Function:  Selects the ".font", ".metric", and ".otag" files of all selected
  7.             files.
  8.  
  9.   Usage:  REXX DMFontsToo.rexx
  10.  
  11. */
  12.  
  13. OPTIONS RESULTS
  14.  
  15. DIRLIST VAR dlist SEL
  16.  
  17. DO i = 0 TO dlist.name.0
  18.   'SELECT' dlist.name.i || '.info' dlist.name.i || '.font' dlist.name.i || '.metric' dlist.name.i || '.otag'
  19. END
  20.